home *** CD-ROM | disk | FTP | other *** search
- "FILE"="Xteq Systems X-Setup Plugin 3.1"
- "TYPE"="5"
- "COUNT"="4"
- "TEXT 1"="Debug"
- "TEXT 2"="Information"
- "TEXT 3"="Warning"
- "TEXT 4"="Error"
- "UIPATH"="Test Plug-ins"
- "NAME"="Message Test"
- "LANGUAGE"="VBScript"
- "DESCRIPTION 1"="TEST!"
- "AUTHOR"="Xteq Systems"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
-
-
-
- 'Called when the Plugin is started
- Sub Plugin_Initialize
- End Sub
-
-
- 'Called when the Plugin should validate the Data the user has entered
- Sub Plugin_CheckData(ElementIndex)
- End Sub
-
-
- 'Called when the Plugin should apply the changes
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- Select Case ElementIndex
- Case 1
- Call DebugMsg("Debug!!!")
- Case 2
- Call MsgInformation("Information")
- Case 3
- Call MsgWarning("Warning")
- Case 4
- Call MsgError("Error")
- end select
- End Sub
-
-
- 'Called when the Plugin is about to be removed from memory
- Sub Plugin_Terminate
- End Sub
-
-
-
-